Fix DND
authorMatthias Clasen <mclasen@redhat.com>
Thu, 21 Mar 2013 03:54:49 +0000 (23:54 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 21 Mar 2013 04:00:19 +0000 (00:00 -0400)
The removal of the Motif DND code accidentally changed the
value of the TARGET_DELETE enumeration value, breaking DND
pretty badly.

gtk/gtkdnd.c

index 2431f982569f691ec8ee59fdaf625a0c74d4795e..83655f0b4300336c53f4805a64d55f8ce144502d 100644 (file)
@@ -185,7 +185,7 @@ typedef gboolean (* GtkDragDestCallback) (GtkWidget      *widget,
 /* Enumeration for some targets we handle internally */
 
 enum {
-  TARGET_DELETE
+  TARGET_DELETE = 0x40000002
 };
 
 /* Forward declarations */